home *** CD-ROM | disk | FTP | other *** search
/ Kompuutteri K-CD 2000 #3 / K-CD_3_00.iso / K-CF.dcr / Internal_106_Mouseover Hilite.ls < prev    next >
Encoding:
Text File  |  2000-01-11  |  465 b   |  16 lines

  1. on new me
  2.   set the visible of sprite the spriteNum of me to 1
  3.   set the visible of sprite (the spriteNum of me + 1) to 1
  4.   set the visible of sprite (the spriteNum of me + 2) to 0
  5. end
  6.  
  7. on mouseEnter me
  8.   set the visible of sprite (the spriteNum of me + 1) to 0
  9.   set the visible of sprite (the spriteNum of me + 2) to 1
  10. end
  11.  
  12. on mouseLeave me
  13.   set the visible of sprite (the spriteNum of me + 1) to 1
  14.   set the visible of sprite (the spriteNum of me + 2) to 0
  15. end
  16.